The parameter meta is not used and could be removed.
This check looks for parameters in functions that are not used in the function
body and are not followed by other parameters which are used inside the function.
Loading history...
34
return `[${this.taskName}]${message}`;
35
}
36
}
37
38
/**
39
* @param {string} taskName
40
*
41
* @return {TaskLogger} Logger for a task
42
*/
43
1
module.exports = taskName => new TaskLogger(taskName, wrapper);
This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.